From 2cc7ae652df9e288dc0aaaaa4c3a0601995500e1 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Wed, 15 Mar 2006 12:40:42 +0100 Subject: [PATCH] Fix 64-bit build. Signed-off-by: Keir Fraser --- xen/common/sched_sedf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c index 87f9f6ab00..2fa363ba24 100644 --- a/xen/common/sched_sedf.c +++ b/xen/common/sched_sedf.c @@ -586,7 +586,8 @@ static void update_queues( DIV_UP(now - curinf->deadl_abs, curinf->period) * curinf->period; if (unlikely(curinf->deadl_abs < now)) - printk("Fatal scheduler error: %lld %lld %lld diff=%lld\n", + printk("Fatal scheduler error: %"PRIu64" %"PRIu64" %"PRIu64 + " diff=%"PRIu64"\n", curinf->deadl_abs, now, curinf->period, now - curinf->deadl_abs); ASSERT(curinf->deadl_abs >= now); -- 2.30.2